Style props for the dimensions of an element.
interface DimensionsSetProps extends HeightProps, MaxHeightProps, MaxWidthProps, MinHeightProps, MinWidthProps, WidthProps
height | OptionalResponsiveProp<HeightProperty<Length>> Specifies the height of an element. |
maxHeight | OptionalResponsiveProp<MaxHeightProperty<Length>> Sets the maximum height of an element. It prevents the used value of the |
maxWidth | OptionalResponsiveProp<MaxWidthProperty<Length>> Sets the maximum width of an element. It prevents the used value of the |
minHeight | OptionalResponsiveProp<MinHeightProperty<Length>> Sets the minimum height of an element. It prevents the used value of the |
minWidth | OptionalResponsiveProp<MinWidthProperty<Length>> Sets the minimum width of an element. It prevents the used value of the |
width | OptionalResponsiveProp<WidthProperty<Length>> Specifies the width of an element. |